home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / ab20 / ab20_archive / sounds / tools / edplayer-1.1a.lzh / ExampEdP.rexx < prev    next >
OS/2 REXX Batch file  |  1991-08-02  |  989b  |  25 lines

  1. /* This is an example ARexx script to load four songs into
  2.    EdPlayer as a program, and start playing them.              */
  3.  
  4. /* Make sure EdPlayer is running, and without any programs in it.  Then,
  5.    make sure ARexx is running, and go to a CLI or Shell and type:
  6.    RX EdPlayer1.0:EdPlayer/ExampEdP
  7.    */
  8.  
  9. address 'EDPLAYER'      /* Who we're talking to */
  10.  
  11. 'NTSC'    /* The following song(s) are to be played in NTSC mode. */
  12. 'AUTO'    /* The following song(s) do NOT fade out. */
  13. 'JUKE EdPlayer1.0:modules/mod.davey trees'      /* song 1: NTSC, no fade */
  14.  
  15. 'AUTO 4'  /* The following song(s) fade out at the normal rate (4). */
  16. 'JUKE EdPlayer1.0:modules/mod.exceedingly.silly' /* song 2: NTSC, fade 4 */
  17. 'JUKE EdPlayer1.0:modules/mod.ghewo'             /* song 3: NTSC, fade 4 */
  18.  
  19. 'AUTO'    /* The following song(s) do NOT fade out. */
  20. 'JUKE EdPlayer1.0:modules/mod.spacedweeb.new'   /* song 4: NTSC, no fade */
  21.  
  22. 'NEXT'    /* Start playing the whole thing! */
  23.  
  24. exit 0    /* the end */
  25.